VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.ImageProcessing.Document Namespace / RestoreTextFromHalftoneCommand Class / RestoreTextFromHalftoneCommand Constructors / RestoreTextFromHalftoneCommand Constructor(Int32,Int32,List<Point[]>)
Syntax Requirements SeeAlso
In This Topic
    RestoreTextFromHalftoneCommand Constructor(Int32,Int32,List<Point[]>)
    In This Topic
    Initializes a new instance of the RestoreTextFromHalftoneCommand class.
    Syntax
    'Declaration
    
    Public Function New( _
    ByVal blackPixelRemovalThreshold
    Threshold, in percents, for black pixels removal.
    As System.Int32, _
    ByVal whitePixelRemovalThreshold
    Threshold, in percents, for white pixels removal.
    As System.Int32, _
    ByVal halftoneRegions
    List of regions to process. Value of this parameter can be null, in that case entire image or region of interest will be processed.
    As System.Collections.Generic.List(Of Point) _
    )
    public RestoreTextFromHalftoneCommand(
    System.Int32 blackPixelRemovalThreshold,
    System.Int32 whitePixelRemovalThreshold,
    System.Collections.Generic.List<Point> halftoneRegions
    )
    public: RestoreTextFromHalftoneCommand(
    System.Int32 blackPixelRemovalThreshold,
    System.Int32 whitePixelRemovalThreshold,
    System.Collections.Generic.List<Point*>* halftoneRegions
    )
    public:
    RestoreTextFromHalftoneCommand(
    System.Int32 blackPixelRemovalThreshold,
    System.Int32 whitePixelRemovalThreshold,
    System.Collections.Generic.List<Point^>^ halftoneRegions
    )

    Parameters

    blackPixelRemovalThreshold
    Threshold, in percents, for black pixels removal.
    whitePixelRemovalThreshold
    Threshold, in percents, for white pixels removal.
    halftoneRegions
    List of regions to process. Value of this parameter can be null, in that case entire image or region of interest will be processed.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also